c4c57c3d66ae20ed87a2e8fdfd7b2f6a19c2038b,src/org/opencms/workplace/editors/ade/CmsSearchOptions.java,CmsSearchOptions,init,#String#String#String#number#,152

Before Change


        if (m_location == null) {
            m_location = "/";
        }
        if (CmsStringUtil.isEmptyOrWhitespaceOnly(type)) {
            throw new CmsIllegalArgumentException(Messages.get().container(
                Messages.ERR_JSON_MISSING_PARAMETER_1,
                CmsADEServer.PARAMETER_TYPE));

After Change


            m_text = "";
        }
        m_location = location;
        if (CmsStringUtil.isEmptyOrWhitespaceOnly(m_location)) {
            m_location = "/";
        }
        m_type = type;
        if (CmsStringUtil.isEmptyOrWhitespaceOnly(m_type)) {
            m_type = "[]";
        }
        m_page = page;